home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
gawk
/
gawk213b.zoo
/
test
/
include.awk
< prev
next >
Wrap
Text File
|
1991-04-06
|
278b
|
14 lines
# input file should have lines which start with "@incl" followed by
# a name of a file to include
{
if ((NF == 2) && ($1 == "@incl")) {
print " -- included file -- ", $2
while ((getline line < $2) > 0)
print line
close ($2)
printf "\t***\n"
} else {
print
}
}